home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 May / PCWorld_2000-05_cd.bin / Software / TemaCD / povray / povwin3.exe / %MAINDIR% / Insert Menu / Shapes / cubic.txt < prev    next >
Encoding:
Text File  |  2000-04-06  |  502 b   |  19 lines

  1. // create a 3rd order infinite polynomial surface
  2. cubic
  3. {
  4.   <
  5. // x^3,      x^2y,     x^2z,     x^2,
  6.    0,        0,        0,        0,
  7. // xy^2,     xyz,      xy,       xz^2,
  8.    0,        0,        0,        0,
  9. // xz,       x,        y^3,      y^2z,
  10.    0,        0,        0,        0,
  11. // y^2,      yz^2,     yz,       y,
  12.    0,        0,        0,        0,
  13. // z^3,      z^2,      z,        C
  14.    0,        0,        0,        0
  15.   >
  16.   sturm // optional, slower but reduces speckles
  17. }
  18.  
  19.